local mouse = game.Players.LocalPlayer:GetMouse() local hrp = game.Players.LocalPlayer.Character.HumanoidRootPart local j = false game:GetService("UserInputService").InputBegan:Connect(function(input, gameProcessedEvent) if input.KeyCode == Enum.KeyCode.LeftControl then j = true end end) game:GetService("UserInputService").InputEnded:Connect(function(input, gameProcessedEvent) if input.KeyCode == Enum.KeyCode.LeftControl then j = false end end) local counter = 0 mouse.Button1Down:Connect(function() if j then local pos = mouse.Hit.Position NS([[ local part = Instance.new("Part",workspace) part.Name = "MineCraft Block ]]..tostring(counter+1)..[[" part.Size = Vector3.new(3,3,3) local image = game.Players:GetUserThumbnailAsync(game.Players["]]..owner.Name..[["].UserId,Enum.ThumbnailType.AvatarBust,Enum.ThumbnailSize.Size150x150) for _,v in pairs(Enum.NormalId:GetEnumItems()) do local decal = Instance.new("Decal",part) decal.Texture = image decal.Face = v end part.Position = Vector3.new(]]..pos.X..[[,]]..pos.Y..[[,]]..pos.Z..[[) part.Color = Color3.fromRGB(math.random(1,255),math.random(1,255),math.random(1,255)) local sound = Instance.new("Sound",part) sound.SoundId = "rbxassetid://138097048" sound.Volume = 2 sound:Play() local explosion = Instance.new("ParticleEmitter",part) explosion.Enabled = false explosion.Texture = "rbxassetid://7924475318" explosion.Lifetime = NumberRange.new(0.2, 0.6) explosion.Drag = 10 explosion.Speed = NumberRange.new(20,40) explosion.SpreadAngle = Vector2.new(180,180) explosion:Emit(10) ]] , workspace) end end) mouse.Button2Down:Connect(function() if j then local part = mouse.Target if part.Name:find("MineCraft Block") then local num = part.Name:sub(17,17) NS([[ workspace:FindFirstChild("MineCraft Block ]]..num..[["):Destroy() ]],workspace) end end end)